home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / metamail / contrib / misc / showaudio.sox < prev    next >
Encoding:
Text File  |  1992-05-08  |  339 b   |  15 lines

  1. #!/bin/sh
  2. # Showaudio for machines that have SOX and playaiff
  3. # Simon Leinen <simon@lia.di.epfl.ch>
  4. #  See also showaudio.sgi
  5. # Hmm, wonder why playaiff can't read from a pipe...
  6. #
  7. rm -f /tmp/$$.aiff
  8. sox -t ul - /tmp/$$.aiff
  9. playaiff /tmp/$$.aiff
  10. #
  11. # Note that we remove the temp file (unlike other parts of metamail)-:
  12. #
  13. rm /tmp/$$.aiff
  14.  
  15.